math.pi
math.pi
import math
print(math.pi) # 輸出: 3.141592653589793
math.e
math.e
import math
print(math.e) # 輸出: 2.718281828459045
math.tau
math.tau
import math
print(math.tau) # 輸出: 6.283185307179586
math.inf
math.inf
import math
print(math.inf) # 輸出: inf
print(math.isinf(math.inf)) # 輸出: True
math.nan
math.nan
import math
print(math.nan) # 輸出: nan
print(math.isnan(math.nan)) # 輸出: True
詳細介紹了 Python math 模組中常見的函數和常數。透過使用這些函數,開發者可以更輕鬆地進行複雜的數學運算。無論是進行基本的數學運算、三角運算,還是處理對數與指數運算,math 模組都提供了豐富的功能。此外,像 math.pi、math.e 和 math.inf 等常數,讓開發者能夠更直觀地處理數學問題。通過這篇文章,讀者能夠清楚地理解這些函數的用途、範例以及在實際應用中的作用,進一步提升數學運算的效率與準確性。